home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000008_news@newsmaster….columbia.edu _Mon Dec 14 10:16:17 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA13384
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 14 Dec 1998 10:16:16 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA16682
  7.     for kermit.misc@watsun; Mon, 14 Dec 1998 10:16:15 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.unix.solaris
  11. Subject: Re: kermit 6.1.193 Beta.05 no xmodem protocol
  12. Date: 14 Dec 1998 15:16:14 GMT
  13. Organization: Columbia University
  14. Lines: 93
  15. Distribution: inet
  16. Message-ID: <753a3u$2gi$1@apakabar.cc.columbia.edu>
  17. References: <913198664.933802@scarlatti> <913567978.641639@scarlatti> <7518ok$2nv$1@apakabar.cc.columbia.edu> <913646879.6614@scarlatti>
  18. NNTP-Posting-Host: watsun.cc.columbia.edu
  19. Xref: news.columbia.edu comp.protocols.kermit.misc:9640 comp.unix.solaris:187481
  20.  
  21. In article <913646879.6614@scarlatti>,
  22. hans mayer  <mayer1b@unisys.co.at> wrote:
  23. : In article <7518ok$2nv$1@apakabar.cc.columbia.edu>,
  24. : Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  25. : >In article <913567978.641639@scarlatti>,
  26. : >hans mayer  <mayer1b@unisys.co.at> wrote:
  27. : >: In article <74om52$8n9$1@apakabar.cc.columbia.edu>,
  28. : >: Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  29. : >: >In article <913280526.237271@scarlatti>,
  30. : >: >hans mayer  <mayer1b@unisys.co.at> wrote:
  31. : >: >: In article <74m2tu$km8$1@apakabar.cc.columbia.edu>,
  32. : >: >: Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  33. : >: >: >In article <913198664.933802@scarlatti>,
  34. : >: >: >hans mayer  <mayer1b@unisys.co.at> wrote:
  35. : >: >: >
  36. : >: >: >: so i tried with external programms rx and sx receiving files worked
  37. : >: >: >: now. but not transmitting. i did a truss -t exec and i can see,
  38. : >: >: >: that kermit forkes, if i try to receive a file, but nothing
  39. : >: >: >: happens, if keying in the transmit command.  a second bug ?
  40. : >: >: >: 
  41. : >: >: >No.  First of all, you must ensure you have rx and sx programs that
  42. : >: >: >use stdio, so they can be redirected over the SET LINE or SET HOST
  43. : >: >: >device.
  44. : >: >: 
  45. : >: >: of course. receiving worked. but not transmitting. i did check, 
  46. : >: >: kermit didn't even try to start an external program.
  47. : >: >: see the truss-output of my first mail. 
  48. : >: >: why did kermit execute an externel prog at receiving commando
  49. : >: >: and not at transmitting commando ?? 
  50. : >: >: 
  51. : >: >After "set protocol xmodem", any "receive" command requires that you
  52. : >: >include a filename, since xmodem protocol does not send filenames.
  53. : >: 
  54. : >: yes, i know. i did give the file-name as argument.
  55. : >: receiving worked, but not transmitting.
  56. : >: 
  57. : >It works OK here:
  58. : >
  59. : >  $ kermit
  60. : >  (C-Kermit 6.0 banner and greeting)
  61. : >  C-Kermit> set proto xmodem
  62. : >  C-Kermit> receive x.x
  63. : >  rx: ready to receive x.x
  64. : >
  65. : >So C-Kermit does indeed start the rx program.  The file transfer works too
  66. : >(at least when the connection permits it).
  67. : >
  68. : >What happens when you give these same commands?
  69. : receiving, from remote to local unix, works fine.
  70. : there i have no problems.
  71. : again - transmitting, from unix to remote, does not work. 
  72. : it doesn't start the sx program. 
  73. :
  74. Both sending and receiving work fine:
  75.  
  76. $ whereis sx
  77. sx: /usr/local/bin/sx
  78. $ ls -l /usr/local/bin/sx
  79. -rwxr-xr-x  1 root        65536 Nov 18  1990 /usr/local/bin/sx
  80. $ kermit
  81. (C-Kermit 6.0 banner and greeting)
  82. C-Kermit> set proto xmodem
  83. C-Kermit> show proto
  84.  
  85. Protocol: XMODEM
  86.  
  87. Executed by external commands:
  88.  
  89.  SEND command (binary):        sx %s
  90.  SEND command (text):          sx -a %s
  91.  RECEIVE command (binary):     rx %s
  92.  RECEIVE command (text):       rx %s
  93.  Autoreceive command (binary): rx %s
  94.  Autoreceive command (text):   rx %s
  95.  
  96. C-Kermit> send x.x
  97. Sending x.x, 1 XMODEM blocks. Give your local XMODEM receive command now.
  98.  
  99. (and the file is transferred).
  100.  
  101. If C-Kermit can't start an external program, that's because it can't find it
  102. (e.g. because the program is not in your PATH), or it lacks permission, or
  103. some similar impediment.  If it *can* start the external protocol program,
  104. but it doesn't work, then we have an additional list of possible problems:
  105. program is not redirectable, connection is not sufficiently transparent for
  106. this protocol, program doesn't work, etc.
  107.  
  108. If you have further trouble, please send email to kermit-support@columbia.edu,
  109. rather than continuing the discussion here, since we have passed the point
  110. where the information in this thread is of general interest.
  111.  
  112. - Frank